Current Location: Home> Function Categories> acosh

acosh

Antihyperbolic cosine
Name:acosh
Category:math
Programming Language:php
One-line Description:Inverse hyperbolic cosine.

Definition and usage

acosh() function returns an inverse hyperbolic cosine of a number.

Example

Returns the inverse hyperbolic cosine value of different values:

 <?php
echo ( acosh ( 7 ) . "<br>" ) ;
echo ( acosh ( 56 ) . "<br>" ) ;
echo ( acosh ( 2.45 ) ) ;
?>

Try it yourself

grammar

 acosh ( x )
parameter describe
x Required. A number.

illustrate

Returns the inverse hyperbolic cosine value of x , that is, the value whose hyperbolic cosine is x .

Similar Functions
  • Find the maximum value max

    max

    Findthemaximumvalue
  • Generate a random integer rand

    rand

    Generatearandominteg
  • Convert radians to corresponding angles rad2deg

    rad2deg

    Convertradianstocorr
  • Convert decimal to octal decoct

    decoct

    Convertdecimaltoocta
  • Round floating point numbers round

    round

    Roundfloatingpointnu
  • Hyperbolic cosine cosh

    cosh

    Hyperboliccosine
  • Returns log(1 + number), and can calculate the exact result even when the value of number is close to zero. log1p

    log1p

    Returnslog(1+number)
  • Generate better random numbers mt_rand

    mt_rand

    Generatebetterrandom
Popular Articles